home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Zoom_Zoom_50.PspScrip < prev    next >
Encoding:
Text File  |  2003-04-22  |  372 b   |  20 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_Zoom():
  13.     return {
  14.         'Percent': 50
  15.         }
  16.  
  17. def Do(Environment):
  18.     App.Do( Environment, 'Zoom',         Preset_Zoom())
  19.  
  20.